Introduction

Introduction

First C program
#include<stdio.h> int main() { printf("Hello"); return(0); }

The first line of the program is #include<stdio.h> which is a header file.

Output
Hello